home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / REmovido / Nave / Blasteroids.swf / scripts / DefineSprite_76 / frame_1 / DoAction.as
Text File  |  2006-06-13  |  289b  |  18 lines

  1. if(int(Math.random() * 25) == 5)
  2. {
  3.    _rotation = -180 + int(Math.random() * 360);
  4.    value = int(Math.random() * 3) + 1;
  5.    if(value == 3)
  6.    {
  7.       gotoAndPlay(3);
  8.    }
  9.    else if(value == 2)
  10.    {
  11.       gotoAndPlay(96);
  12.    }
  13.    else
  14.    {
  15.       gotoAndPlay(146);
  16.    }
  17. }
  18.